body {
	box-sizing: border-box;
	color: black;
	background: #c0c0c0;
	font-size: 16px;
	font-family: "Verdana", "Arial", "Helvetica", sans-serif;
	background: #ebf9f2;

	width: min(55rem, 100vw);
	margin: auto;

	form {
		background-color: white;
		border-radius: 0.5rem;
		padding: 1rem 2rem;
	}
}

/* Tabelle der Abfahrtszeiten mit Kapazitäten */
.trainTable > .row {
	height: 3.5rem;
	margin-bottom: 1rem;

	.day {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		padding: 1rem;
		border: none;
	}

	.train {
		border: solid 1px #e3e3e3;
		border-radius: 0.5rem;
		color: black;
		background: white;
		padding: 0.5rem 0.75rem;

		button.zeit {
			background-color: white;
			color: black;

			> .bar {
				border-radius: 1rem;
				margin-top: 0.2rem;
			}

			.bar {
				height: 0.5rem;

				&.yellow {
					background-color: #ffbf26;
				}
			}
		}
	}
}

fieldset {
	border: 1px solid black;
	border-radius: 0.5rem;

	legend {
		font-weight: 600;
	}
}

/* Bestellformular (Anzahl Personen, Hund, Fahrrad) + Kundendaten */
table {
	tr {
		padding-bottom: 1rem;
	}

	th:not(:first-child),
	td:not(:first-child) {
		padding-left: 1rem;
	}

	.number {
		/* Umbruch bei kleiner Breite verhindern (betrifft nicht Bezeichnung) */
		text-wrap: nowrap;
	}
}

/* Alle Eingabefelder*/
input,
select, textarea {
	background-color: white;
	border: solid 1px #e3e3e3;
	border-radius: 0.25rem;
	padding: 0.25rem 0.5rem;
}

.radioBox {
	padding: 1rem;
	border-radius: 0.25rem;
}

/* Alle Buttons außer Zeitslots */
:not(.train) > button {
	border-radius: 0.5rem;
	color: white;
	background: #1e8f55;
	padding: 0.5rem 1rem;
	border: none;
}

hr {
	opacity: 0.2;
	margin-top: 2rem;
}

h2 {
	margin-top: 2rem;
}